* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}
body {
    background-color: #f8f8f8;
}
.container {
max-width: 1200px;
margin-top: 200px;
padding: 20px;
display: flex;
gap: 30px;
}

.product {
display: flex;
width: 100%;
gap: 30px;
}

.product-images {
    width: 50%;
}
.main-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 20px;
    position: relative;
}
.main-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    border: 1px solid #eee;
}
.thumbnail-container {
    display: flex;
    gap: 10px;
    overflow-x: auto;
}
.thumbnail {
    width: 80px;
    height: 80px;
    border: 1px solid #ddd;
    border-radius: 5px;
    cursor: pointer;
}
.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}
.favorite-compare {
    position: absolute;
    bottom: 15px;
    right: 15px;
    display: flex;
    gap: 10px;
}
.icon-button {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    cursor: pointer;
}

.product-info {
    width: 50%;
}
.brand {
    color: #555;
    margin-bottom: 5px;
}
.product-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
}
.rating {
    display: flex;
    margin-bottom: 20px;
    color: gold;
    font-size: 20px;
}
.benefits {
    background-color: #f1f1f1;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 20px;
}
.benefits ul {
    list-style-type: none;
}
.benefits li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.benefits li::before {
    content: "•";
    color: #000;
}
.import-options {
    display: flex;
    margin-bottom: 20px;
}
.option {
    padding: 10px 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-right: 10px;
    cursor: pointer;
}
.option input {
    cursor: pointer;
}
.price {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
}
.selector {
    margin-bottom: 15px;
}
.selector label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
    color: #555;
}
.selector select {
    width: 150px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}
.quantity {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
.quantity button {
    width: 40px;
    height: 40px;
    border: 1px solid #ddd;
    background: white;
    font-size: 20px;
    cursor: pointer;
}
.quantity button:first-child {
    border-radius: 5px 0 0 5px;
}
.quantity button:last-child {
    border-radius: 0 5px 5px 0;
}
.quantity input {
    width: 60px;
    height: 40px;
    border: 1px solid #ddd;
    border-left: none;
    border-right: none;
    text-align: center;
    font-size: 16px;
}
.add-to-cart {
    width: 100%;
    padding: 15px;
    background: #000;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    margin-bottom: 20px;
}
.shipping-info {
    font-size: 14px;
    margin-bottom: 10px;
}
.shipping-note {
    font-style: italic;
    font-size: 12px;
}
.origin-badge {
    display: inline-block;
    background: #000;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    margin-bottom: 20px;
}